home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / dfix12.zip / DFIX < prev    next >
Text File  |  1986-12-10  |  200b  |  12 lines

  1. # makefile for DFIX.EXE.  Use with Microsoft C 3.x compiler (or IBM-C).
  2.  
  3. dfix.obj : dfix.c
  4.     cc /Zp dfix.c;
  5.  
  6. afix.obj : afix.asm
  7.     masm afix;
  8.  
  9. dfix.exe : dfix.obj afix.obj
  10.     link dfix afix;
  11.  
  12.